home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ ASP Options General 2.xpl < prev    next >
Text File  |  2000-08-06  |  2KB  |  51 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="6"
  3. "COUNT"="2"
  4. "UIPATH"="Internet\Internet Information Server\ASP Settings"
  5. "NAME"="General Settings (2)"
  6. "VERSION"="1.11"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Allow EXE components"
  9. "TEXT 2"="Activate ODBC-Connection pooling"
  10. "DESCRIPTION 1"="Allow EXE components: Normally ASP does only allow DLL components to be used from scripts. If you activate this option, scripts can also use EXE components. (default: Deactivated)"
  11. "DESCRIPTION 2"="Activate ODBC pooling: If activated, all ODBC-Connections are pooled so they need fewer resources but queries will also be slower. (default: deactivated)"
  12. "AUTHOR"="Xteq Systems"
  13. "CONTACTURL"="http://www.xteq.com"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"=" "
  16.  
  17.  
  18. sP="HKLM\System\CurrentControlSet\Services\W3SVC\ASP\Parameters\"
  19. vEC="AllowOutOfProcCmpnts" 'DW
  20. vOC="StartConnectionPool" 'DW
  21. Sub Plugin_Initialize 
  22.  If RegPathExists(sP) then
  23.   If RegReadValue(sp&vec)=1 then SetUIElement 1,true
  24.   If RegReadValue(sp&voc)=1 then SetUIElement 2,true
  25.  else
  26.   Disable
  27.  end if
  28. End Sub
  29.  
  30. Sub Plugin_CheckData(ElementIndex)
  31. End Sub
  32.  
  33. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  34.  b=GetUIElement(1)
  35.  if b=true then
  36.   Call RegWriteValue(sp&vec,1,2)
  37.  else
  38.   Call RegWriteValue(sp&vec,0,2)
  39.  end if
  40.  
  41.  b=GetUIElement(2)
  42.  if b=true then
  43.   Call RegWriteValue(sp&voc,1,2)
  44.  else
  45.   Call RegWriteValue(sp&voc,0,2)
  46.  end if
  47. End Sub
  48.  
  49. Sub Plugin_Terminate 
  50. End Sub
  51.